Tuesday, June 28, 2005

MS Word Radio Butttons

This post is technical. It provides a way to implement radio-button style check boxes in a Microsoft Word document. This is something that Microsoft seems to have overlooked.

How to Create Mutually Exclusive Check Boxes by Using a Macro

Background: A friend of mine was using MS Word to produce a survey for her office. She wanted to allow the user to open the document and select one 6 ratings for a survey by selecting a check box. She found out that there was no way in Word to have the other check boxes turn "off" when one was turned on. She called me for help. I wrote her this small VB solution. It is very flexible and can be used by anyone.

Microsoft offers a solution to this problem on their website. But it is really lame because it requires the user to update the program every time they add, change, or remove a check box. I figured I could do better and make one that would never need to be changed. Mine is smart enough to figure out how to group checkboxes without the user having to learn how to program.

  • In your Word document, go to Tools > Macro > Visual Basic Editor. This will launch the MS Visual Based editor.
  • In the Project Explorer Window you will see your project with a folder named "Microsoft Word Objects".
  • In that folder you will see "ThisDocument". Double click on that to open up the code window.
  • Then insert the follow code.



Then insert the check box form fields into the Word document. You will find them on the "Control Toolbox" toolbar.

Right click the check box and pull up properties.
  • Set the default value to "Not Checked"
  • Set Run Macro On Entry to "Radio_Check_Box"
  • Set Bookmark to whatever name you want, such as "grp01_a".
The bookmark name must be unique for each checkbox in the document.

No comments: